-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support to read tinyint #22
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #22 +/- ##
==========================================
+ Coverage 73.75% 79.35% +5.60%
==========================================
Files 27 29 +2
Lines 2343 2499 +156
==========================================
+ Hits 1728 1983 +255
+ Misses 615 516 -99
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
f7dc540
to
cf13577
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think TinyInt should map to i8 and not u8
Can see Arrow cpp reference here maps it to Int8 datatype:
@Jefffrey I mapped it to i8, PTAL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, looks good
feat: support to read tinyint
Support to read tinyint data
close #17